home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000200_fdc@columbia.edu_Tue Dec 4 11:33:19 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  50 lines

  1. Article: 13023 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Problems With File Transfer And Scripting
  6. Date: 4 Dec 2001 11:29:50 -0500
  7. Organization: Columbia University
  8. Lines: 34
  9. Message-ID: <200112041629.LAA20252@watsun.cc.columbia.edu>
  10. NNTP-Posting-Host: kachifo.cc.columbia.edu
  11. X-Trace: newsmaster.cc.columbia.edu 1007483391 8897 128.59.59.172 (4 Dec 2001 16:29:51 GMT)
  12. X-Complaints-To: postmaster@columbia.edu
  13. NNTP-Posting-Date: 4 Dec 2001 16:29:51 GMT
  14. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13023
  15.  
  16. This one goes back to October, sorry...  Very busy here!
  17.  
  18. : I need to connect to approximately 360 voice mail servers (running
  19. : UNIX System V/386 Release 3.0 80486) and transfer one small file (500
  20. : bytes) from each machine back to an AIX box for processing.  I am
  21. : using an external NEC 9635 E modem to dial each of these servers.  The
  22. : modem type I am using is "generic-high-speed".
  23. : The versions of C-Kermit being used are as follows:
  24. : C-Kermit 7.0.196, 1 Jan 2000, for IBM AIX 4.3
  25. : C-Kermit, 4C(058) 19 Mar 86, Unisys PulsePoint Communications
  26. : I am running into a few problems trying to get this to work.
  27. : 1) While trying to transfer a file, I am getting timeout errors (e.g.
  28. : Last Error: Timeout 13 sec) on some boxes.  This occurs even when I
  29. : attempt to manually login and transfer the files (with Kermit of
  30. : course).
  31. The logs you sent show that C-Kermit is sending even parity.  Is this
  32. appropriate in the failing cases?
  33.  
  34. The packet log shows that the remote Kermit (the unknown PulsePoint one)
  35. doesn't like I-packets.  If you upgrade your C-Kermit version 7.0 to
  36. C-Kermit 8.0, you can tell it to:
  37.  
  38.   set send i-packets off
  39.  
  40. But in any case, your packet log shows that the remote (PulsePoint) Kermit
  41. doesn't receive even one packet it understands, so my guess is that even
  42. parity is not appropriate in this case.
  43.  
  44. - Frank
  45.